
.body-anonymous {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 5rem!important;
}

.content-anonymous {
    min-width: 0;
    flex-grow: 1;
}

.footer-anonymous {
    color:#f2f6fc !important;
    line-height: 1;
    font-size: .8rem;
}

.footer-admin {
    color:#a7aeb8 !important;
    line-height: 1;
    font-size: .8rem;
    height: 5rem;
    display: flex;
    align-items: center;
}

.logo-header-anonymous {
    max-width: 100%;
    max-height: 100px;
}

.avatar-conversation {
    width: 56px; 
    height: 56px;
    object-fit: cover;
    border-radius: 50% !important;
}

.apercu-conversation {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 19px;
}

.chat-container {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.message {
    max-width: 75%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    word-wrap: break-word;
    position: relative;
    box-shadow: 8px 6px 1px rgba(0, 0, 0, 0.15);
}
.message.recu {
    color: #004dbc;
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.message.envoye {
    color: white;
    background: #004dbc;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}
.message img {
    max-width: 200px;
    border-radius: 10px;
    display: block;
}
.timestamp {
    font-size: 12px;
    text-align: right;
    margin-top: 5px;
}
.timestamp.envoye {
    color: #cdcdcd;;
}
.timestamp.recu {
    color: #808080;
}
.jour {
    background: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 10px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1rem;
    margin-bottom: 1rem; 
    width: auto;
    box-shadow: 5px 3px 3px rgba(0, 0, 0, 0.15);
}

:root {
    --bs-detective: #ffda00;
    --bs-skyblue: #89d1db;
    --bs-entite: #0269dd;
}

.bg-detective {
    background-color: var(--bs-detective) !important;
}

.bg-skyblue {
    background-color: var(--bs-skyblue) !important;
}

.text-skyblue {
    color:var(--bs-skyblue) !important
}

.border-skyblue {
    border-color: var(--bs-skyblue) !important;
}

.text-detective {
    color:var(--bs-detective) !important
}

.pinch-zoom-container {
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.pinch-zoom img {
    max-width: 100%;
    max-height: 100%;
}

.bg-image {
    background-image: url('/public/images/fond.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.textarea-message:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

.video-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.video-thumbnail img {
    max-width: 200px;
    display: block;
}

.video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.7);
    font-size: 30px;
    pointer-events: none;
}